How to create a new project in Django using Firebase Database?
Django is a Python-based web framework that allows you to quickly create efficient web applications. If you are new to Django then you can refer to Django Introduction and Installation. Here we are going to learn How to create a Django project using Firebase as Database ....
read more
How to define the required Node.js version in package.json?
To define the required Node.js version in the package.json file we will have to go through few simple steps:...
read more
How to Highlight the Searched String Result using JavaScript ?
Given below is an HTML document which is basically about how to highlight the searched string result. In this article, we are using HTML, CSS, JavaScript, Bootstrap and mark.js to make our website more effective. Moreover, exclusively for highlighting the searched string among a given context or paragraph, mark.js plays a vital role in this particular code. Before approaching this problem, keep a mark of my words that, the problem can be solved by many other approaches but I think this can also be a way better approach towards this given problem....
read more
How to create Responsive Profile Card using HTML and CSS ?
In this article, we are going to create a profile card from where a user can check out the basic details of other users and connect with them through different handles as well as message the user....
read more
Create GeeksforGeeks logo using HTML and CSS
Creating a logo using HTML and CSS involves designing graphical elements with HTML tags, styling them using CSS properties such as colors, sizes, and positions, and possibly incorporating SVG graphics or images. This approach allows for custom, scalable, and interactive logo designs on web pages....
read more
How to Create a Directory using Node.js ?
In this article, we will create a directory using NodeJS....
read more
Pulsing Heart Animation Effect Using HTML & CSS
This article will teach you about widely fascinated and used HTML & CSS animation i.e. Pulsating Heart Animation. In this article, basically we will learn two methods to implement the animation. This animation is beneficial while making footer of the most website with some common text like Made with Love. So, Let’s have a look on the animation first :...
read more
How to create a Share Button with different Social Handles using HTML & CSS ?
In this article, we will learn step-by-step instructions to create a share button with multiple social media options such as Facebook, Twitter, LinkedIn, and many more. By the end of this article, you will have the necessary skills to create your custom share button. Sharing your content on social media platforms is now made easy with this feature....
read more
How to style with SASS/SCSS in React ?
Styling in React is very important for creating better user interfaces. using SASS/SCSS in React, which offers many features over traditional CSS, you can write more maintainable and structured stylesheets....
read more
How to get the number of lines in a file using PHP?
Given a file reference, find the number of lines in this file using PHP. There are a total of 3 approaches to solve this....
read more
Create a Video and Audio Recorder with JavaScript MediaRecorder API
WebRTC is very popular for accessing device cameras and device microphones and streaming the video or audio media in the browser. But in many cases, we might need to record the streaming for future use or for users (Like user might want to download the streaming, etc.). In that case, we can use the MediaRecorder API to record the media streaming....
read more
How to access cache data in Node.js ?
Cache: Caching is a technique used for improving the performance of servers and a lot of devices used in day-to-day life.In caching, the result of certain computation or task is stored somewhere, and if the same computation is required again, it is served from that location itself rather than doing the computation again. This reduces computation and improves performance, thereby providing a better user experience.A lot of apps cache data for the first time they’re fired, hence are able to efficiently provide responses. Similarly, the majority of servers have advanced cached mechanisms for endpoints that serve the same response for the majority of the time....
read more